Skip to content

Instantly share code, notes, and snippets.

@cookeees
cookeees / building-positive-moderation-culture-on-imageboard-communities-676w.md
Created June 30, 2026 19:51
Building Positive Moderation Culture on Imageboard Communities

Building Positive Moderation Culture on Imageboard Communities

the rule34.ink gallery

Every booru user eventually encounters moderation — whether through a disputed tag, a removed post, or a community guideline question. Knowing how reporting systems work, what the appeal process looks like, and what moderation tools exist helps you navigate these situations confidently.

Important Factors

Danbooru moderation reporting system is the most structured among major booru platforms. Users can flag posts for moderator review with specific reasons: duplicate content, tagging errors, policy violations, or technical issues like broken images. Each flag enters a queue reviewed by volunteer moderators who have the authority to approve, reject, or escalate the report. The system prioritizes flags based on reporter reputation — established users flags carry more weight. Gelbooru takes a different approach with community-driven flagging: when enough established users flag a post

@cookeees
cookeees / automod-and-community-moderation-tooling-on-image-boards-2ync.md
Created June 30, 2026 19:50
Automod and Community Moderation Tooling on Image Boards

Automod and Community Moderation Tooling on Image Boards

Every booru user eventually encounters moderation — whether through a disputed tag, a removed post, or a community guideline question. Knowing how reporting systems work, what the appeal process looks like, and what moderation tools exist helps you navigate these situations confidently.

Automod and Community Moderation Tooling on Image Boards

rule34.ink tag search — Danbooru moderation reporting system is the most structured among major booru platforms. Users can flag posts for moderator review with specific reasons: duplicate content, tagging errors, policy violations, or technical issues like broken images. Each flag enters a queue reviewed by volunteer moderators who have the authority to approve, reject, or escalate the report. The system prioritizes flags based on reporter reputation — established users flags carry more weight. Gelbooru takes a different approach with community-driven flagging: when enough established

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active June 30, 2026 19:46
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest

@pizlonator
pizlonator / pizlossa.md
Last active June 30, 2026 19:46
Pizlo SSA Form (short version)

Here's a much more complete description of how I do SSA, beyond just how I do Phis.

This describes how I do SSA form, which avoids the need to have any coupling between CFG data structures and SSA data structures.

Let's first define a syntax for SSA and some terminology. Here's an example SSA node:

A = Add(B, C)

In reality, this will be a single object in your in-memory representation, and the names are really addresses of those objects. So, this node has an "implicit variable" called A; it's the variable that is implicitly assigned to when you execute the node. If you then do:

@pizlonator
pizlonator / pizlossafull.md
Last active June 30, 2026 19:46
How I implement SSA form

This document explains how I would implement an SSA-based compiler if I was writing one today.

This document is intentionally opinionated. It just tells you how I would do it. This document is intended for anyone who has read about SSA and understands the concept, but is confused about how exactly to put it into practice. If you're that person, then I'm here to show you a way to do it that works well for me. If you're looking for a review of other ways to do it, I recommend this post.

My approach works well when implementing the compiler in any language that easily permits cyclic mutable data structures. I know from experience that it'll work great in C++, C#, or Java. The memory management of this approach is simple (and I'll explain it), so you won't have to stress about use after frees.

I like my approach because it leads to an ergonomic API by minimizing the amount of special cases you have to worry about. Most of the compiler is analyses and transformations ov

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@ConnerWill
ConnerWill / ANSI-escape-sequences.md
Last active June 30, 2026 19:33
ANSI Escape Sequences cheatsheet

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@neubig
neubig / fusion_harness_example.py
Created June 29, 2026 23:28
Fusion Harness: How to combine a more expensive main model and a sidekick model
"""Fusion-style delegation harness built with the OpenHands SDK.
Install:
uv pip install openhands-sdk openhands-tools
Run:
export LLM_API_KEY="..." # or export OPENHANDS_API_KEY="..."
export MAIN_MODEL="openhands/gpt-5.5"
export SIDEKICK_MODEL="openhands/minimax-m2.7"
uv run python fusion_harness_example.py "Find and fix the failing tests in this repo."